@charset "UTF-8";
.flex {
  display: -webkit-box;
  /* 老版本语法: Safari 3.1-6,  iOS 6-, Android browser, older WebKit browsers.  */
  display: -moz-box;
  /* 老版本语法: Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法： Chrome 21+ */
  display: flex;
  /* 新版本语法： Opera 12.1, Firefox 22+ */
}

.flex-v {
  /***兼容性写法***/
  -moz-box-orient: vertical;
  /* Firefox */
  -webkit-box-orient: vertical;
  /* Safari、Opera 以及 Chrome */
  box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  /* Safari */
  flex-direction: column;
}

.flex-align-center {
  /*老版本语法*/
  -webkit-box-align: center;
  -moz-box-align: center;
  /*混合版本语法*/
  -ms-flex-align: center;
  /*新版本语法*/
  -webkit-align-items: center;
  /* Safari */
  align-items: center;
}

.flex-align-start {
  /*老版本语法*/
  -webkit-box-align: start;
  -moz-box-align: start;
  /*混合版本语法*/
  -ms-flex-align: start;
  /*新版本语法*/
  -webkit-align-items: flex-start;
  /* Safari */
  align-items: flex-start;
}

.flex-align-end {
  /*老版本语法*/
  -webkit-box-align: end;
  -moz-box-align: end;
  /*混合版本语法*/
  -ms-flex-align: end;
  /*新版本语法*/
  -webkit-align-items: flex-end;
  /* Safari */
  align-items: flex-end;
}

.flex-pack-center {
  /*老版本语法*/
  -webkit-box-pack: center;
  -moz-box-pack: center;
  /*混合版本语法*/
  -ms-flex-pack: center;
  /*新版本语法*/
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
}

.flex-pack-justify {
  /*老版本语法*/
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  /*混合版本语法*/
  -ms-flex-pack: justify;
  /*新版本语法*/
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}

.flex-pack-distribute {
  /*混合版本语法*/
  -ms-flex-pack: distribute;
  /*新版本语法*/
  -webkit-justify-content: space-around;
  /* Safari */
  justify-content: space-around;
}

.flex-pack-start {
  /*老版本语法*/
  -webkit-box-pack: start;
  -moz-box-pack: start;
  /*混合版本语法*/
  -ms-flex-pack: start;
  /*新版本语法*/
  -webkit-justify-content: flex-start;
  /* Safari */
  justify-content: flex-start;
}

.flex-pack-end {
  /*老版本语法*/
  -webkit-box-pack: end;
  -moz-box-pack: end;
  /*混合版本语法*/
  -ms-flex-pack: end;
  /*新版本语法*/
  -webkit-justify-content: flex-end;
  /* Safari */
  justify-content: flex-end;
}

@font-face {
  font-family: 'dy';
  src: url("../fonts/webfont.woff2") format("woff2"), url("../fonts/webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.scroll-scenes::-webkit-scrollbar {
  width: 12px;
  border: 2px solid #aaaaaa;
  border-radius: 5px;
}

.scroll-scenes::-webkit-scrollbar-thumb {
  border-radius: 5px;
  border: 4px solid rgba(255, 255, 255, 0);
  height: 54px;
  background: #7d7d7d;
  background-clip: content-box;
}

.scroll-scenes::-webkit-scrollbar-track {
  border-radius: 5px;
  background: transparent;
}

.w1560 {
  width: 92%;
  max-width: 1560px;
  margin: 0 auto;
}

main {
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

.swiper-button-disabled {
  cursor: no-drop !important;
}

.bold {
  font-family: 'Microsoft YaHei Light';
  font-weight: bold;
}

html {
  font-size: 100px;
}

body {
  width: 100%;
  min-width: 1200px;
  font-family: 'Source Han Sans CN', '思源黑体', 'Microsoft YaHei';
  font-size: 16px;
}

@media screen and (max-width: 1700px) {
  html {
    font-size: 92px;
  }
}
@media screen and (max-width: 1536px) {
  html {
    font-size: 85px;
  }
}
@media screen and (max-width: 1373px) {
  html {
    font-size: 80px;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 75px;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1200px;
  z-index: 999;
}
header .logo {
  float: left;
  padding: 20px 0 19px;
}
header .logo img {
  display: block;
  height: 61px;
}
header .hd-r {
  float: right;
}
header .hd-r .language {
  float: right;
  margin-top: 30px;
  margin-left: 30px;
  width: 80px;
  background: #00b1cc;
  border-radius: 6px;
  text-align: center;
  font-size: 18px;
  line-height: 46px;
  color: #fff;
}
header .hd-r .tel {
  float: right;
  margin-top: 30px;
  width: 190px;
  border: 1px solid #00b1cc;
  border-radius: 6px;
  text-align: center;
  font-size: 20px;
  line-height: 44px;
  color: #00b1cc;
}
header .hd-r .tel span {
  font-size: 20px;
}
header .hd-r nav {
  float: left;
}
header .hd-r nav .item {
  float: left;
  margin-right: 0.78rem;
  padding-top: 3px;
  position: relative;
}
header .hd-r nav .item:last-child {
  margin-right: 0.7rem;
}
@media screen and (max-width: 1580px) {
  header .hd-r nav .item {
    margin-right: 0.5rem;
  }
  header .hd-r nav .item:last-child {
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 1300px) {
  header .hd-r nav .item {
    margin-right: 0.35rem;
  }
  header .hd-r nav .item:last-child {
    margin-right: 0.35rem;
  }
}
header .hd-r nav .item a {
  color: #fff;
}
header .hd-r nav .item.active .lv1 {
  color: #00b1cc;
}
header .hd-r nav .item.active .lv1:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  width: 6px;
  height: 3px;
  background: #00b1cc;
}
header .hd-r nav .item.active .lv1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 19px;
  width: calc(100% - 10px);
  height: 3px;
  background: #00b1cc;
}
header .hd-r nav .item .lv1box .lv1 {
  display: block;
  font-size: 18px;
  line-height: 94px;
}
header .hd-r nav .item .lv1box .lv1:hover {
  color: #00b1cc;
}
header .hd-r nav .item .lv2box {
  position: absolute;
  top: 100%;
  left: -50%;
  width: 200%;
  transition: 0.4s all cubic-bezier(1, -0.6, 0.195, 0.34);
  -moz-transition: 0.4s all cubic-bezier(1, -0.6, 0.195, 0.34);
  -webkit-transition: 0.4s all cubic-bezier(1, -0.6, 0.195, 0.34);
  -o-transition: 0.4s all cubic-bezier(1, -0.6, 0.195, 0.34);
  -ms-transition: 0.4s all cubic-bezier(1, -0.6, 0.195, 0.34);
  visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
}
header .hd-r nav .item .lv2box .lv2 {
  font-size: 14px;
  text-align: center;
  display: block;
  background: #00b1cc;
  padding: 8px;
}
header .hd-r nav .item .lv2box .lv2:first-child {
  padding-top: 16px;
}
header .hd-r nav .item .lv2box .lv2:last-child {
  padding-bottom: 16px;
}
header .hd-r nav .item .lv2box .lv2:hover {
  text-decoration: underline;
}
header .hd-r nav .item:hover .lv2box {
  visibility: visible;
  filter: alpha(opacity=100);
  opacity: 1;
}

footer {
  background: #1a1610;
  padding-bottom: 1.1rem;
}
footer a:hover {
  color: #fff;
  opacity: 1;
  text-decoration: underline;
}
footer .left {
  float: left;
  width: 60%;
  max-width: 900px;
}
@media screen and (max-width: 1440px) {
  footer .left {
    width: calc(100% - 590px);
  }
}
footer .left .footer-nav {
  overflow: hidden;
  padding: 0.75rem 0 0.58rem;
  border-bottom: 1px solid #fff;
}
footer .left .footer-nav .item {
  float: left;
  padding-right: 1rem;
  padding-left: 32px;
}
@media screen and (max-width: 1440px) {
  footer .left .footer-nav .item {
    padding-right: 0.8rem;
  }
  footer .left .footer-nav .item:last-child {
    padding-right: 0;
  }
}
@media screen and (max-width: 1366px) {
  footer .left .footer-nav .item {
    padding-right: 0.3rem;
  }
}
footer .left .footer-nav .item .lv1box .lv1 {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}
footer .left .footer-nav .item .lv1box .lv1:before {
  content: '';
  position: absolute;
  left: -32px;
  width: 12px;
  height: 26px;
  background: url(../images/icon_zjxz.png) no-repeat center;
  background-size: 12px 13px;
}
footer .left .footer-nav .item .lv2box .lv2 {
  display: block;
  margin-top: 14px;
  letter-spacing: 0.2px;
  font-size: 12px;
  line-height: 22px;
  color: #fff;
  opacity: .7;
}
footer .left .blogroll {
  margin-top: 0.44rem;
  font-size: 12px;
  line-height: 36px;
  color: #fff;
}
footer .left .blogroll a {
  color: #fff;
  margin-right: 5px;
  margin-left: 2px;
}
footer .left .copyright {
  margin-top: 0.2rem;
  font-size: 14px;
  line-height: 36px;
  color: #fff;
}
footer .left .copyright a {
  color: #fff;
}
footer .right {
  float: right;
  width: 490px;
  padding-top: 81px;
}
footer .right .ft-logo {
  margin-bottom: 0.58rem;
}
footer .right .text {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  overflow: hidden;
  margin-bottom: 0.22rem;
}
footer .right .text:nth-child(2) {
  margin-bottom: 0;
}
footer .right .text .item {
  float: left;
  margin-bottom: 0.22rem;
}
footer .right .text .item:nth-child(odd) {
  width: 250px;
  margin-right: 36px;
  position: relative;
}
footer .right .text .item:nth-child(odd):before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: #fff;
  margin-top: -7px;
}
footer .right .code {
  padding-top: 0.6rem;
  overflow: hidden;
  font-size: 12px;
  line-height: 36px;
  color: #fff;
}
footer .right .code .item {
  float: left;
  text-align: center;
  margin-right: 58px;
}
footer .right .code .item:last-child {
  margin-right: 0;
}
footer .right .code .item .imgbox {
  padding: 5px;
  border: 2px solid #858380;
}
footer .right .code .item .imgbox img {
  display: block;
  width: 98px;
  height: 98px;
}
footer .right .code .item .txtbox {
  margin-top: 10px;
}


.gotop {
  position: fixed;
  bottom: 40px;
  right: -60px;
  width: 50px;
  height: 50px;
  background-color: #00b1cc;
  border: 1px solid #00b1cc;
  border-radius: 7px;
  cursor: pointer;
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 99999;
}
.gotop svg {
  position: absolute;
  top: 9px;
  right: 9px;
  transform: rotate(-90deg);
}
.gotop:hover {
  background-color: rgba(0,177,204, 0.8);
}
.gotop.active {
  right: 10px;
}